var max=0;function AsylumNavLink(parentId,linkId,order,href,linkText,target,width)
{this.linkId=linkId;this.parentId=parentId;this.order=order;this.href=href;this.linkText=linkText;this.target=target;this.width=width;};function AsylumNav(contId,layout,offset)
{this.menuCont=document.getElementById(contId);this.layout=layout;this.offset=(typeof offset=='undefined'?'Right':offset);this.menuItems=new Object();this.clickUnderCreated=false;};AsylumNav.prototype.AddLink=function(parentId,linkId,order,href,linkText,target,width)
{if(typeof this.menuItems[parentId]=='undefined')
{this.menuItems[parentId]=new Object();}
if(typeof width=="undefined")width=false;this.menuItems[parentId][linkId]=new AsylumNavLink(parentId,linkId,order,href,linkText,target,width);if(order>max){max=order;}};AsylumNav.prototype.CreateLevel=function(levelId,idPrefix)
{obj=this;div=document.createElement('div');div.id=idPrefix+levelId;div.levelId=levelId;div.idPrefix=idPrefix;div.className='levelDiv';div.onmouseout=function(e){obj.HideLevel(e);};div.subLevels=new Object();if(levelId!='0')
{div.style.visibility='hidden';div.className+=' subLevel';div.style.position='absolute';}
else
{div.className+=' topLevel';}
if(this.layout=='Horizontal')
{div.style.position='absolute';}
div.style.zIndex=10;if(this.menuCont){this.menuCont.appendChild(div);}
for(i=0;i<=max;i++){for(linkId in this.menuItems[levelId]){if(this.menuItems[levelId][linkId].order==i){linkDiv=document.createElement('div');linkDiv.id='asylumNavLinkDiv'+linkId;linkDiv.linkId=linkId;linkDiv.levelId=levelId;linkDiv.className='linkDiv';if(levelId=="0"){linkDiv.className+=" topLevel";if(this.menuItems[levelId][linkId].width){linkDiv.style.width=this.menuItems[levelId][linkId].width+"px";}}
div.appendChild(linkDiv);navLink=this.menuItems[levelId][linkId];a=document.createElement('a');a.id='asylumNavLink'+linkId;a.linkType='navMenu';a.linkId=linkId;a.levelId=navLink.parentId;a.parentId=navLink.parentId;if(navLink.href==''||navLink.href=='#')
{a.href='#';a.target='';a.style.cursor='default';}
else
{a.href=navLink.href;a.target=navLink.target;}
if(this.layout=='Vertical')
{a.innerHTML=navLink.linkText;}
else
{a.innerHTML=navLink.linkText.split(' ').join('&nbsp;');}
a.onmouseover=function(){obj.ShowLevel(this);};linkDiv.appendChild(a);if(linkId==pageId)
{a.className='activeLink';linkDiv.className+=' activeLink';topLink=this.GetTopLevelLink(navLink);if(typeof this.menuItems[topLink.linkId]!='undefined'&&navLink.levelId!='0')
{try{document.getElementById('asylumNavLink'+topLink.linkId).className+=' activeLink';document.getElementById('asylumNavLinkDiv'+topLink.linkId).className+=' activeLink';}catch(e){}}
if(document.getElementById("clickUnder")!=null)
{this.CreateClickUnder(topLink,true);}}
else
{}
if(typeof this.menuItems[linkId]!='undefined')
{div.subLevels[linkId]=true;}}}}
return div;};AsylumNav.prototype.Construct=function()
{if(this.menuCont==null){return;}
var obj=this;for(levelId in this.menuItems)
{this.CreateLevel(levelId,'asylumNavLevel');}
if(this.layout=='Vertical')
{if(typeof document.getElementById('tplMainSectors')!=null)
{ms=document.getElementById('tplMainSectors');ms.style.height=ms.offsetHeight;}}
else
{this.menuCont.style.height=document.getElementById('asylumNavLevel0').offsetHeight+'px';}
this.CreateBreadCrumbs();};AsylumNav.prototype.CreateClickUnder=function(navLink,active)
{if(typeof doneClickUnder=="undefined"){doneClickUnder=true;}else{return;}
if(document.getElementById("clickUnder")==null)return;obj=this;var linkId;if(this.layout=='Vertical')
{clickDiv=document.createElement('div');clickDiv.id="clickUnder";document.getElementById("clickUnder").appendChild(clickDiv);linkDiv=document.getElementById('asylumNavLinkDiv'+navLink.linkId);linkDiv.appendChild(clickDiv);}
else
{clickDiv=document.getElementById("clickUnder");}
var linkCount=0;for(linkId in this.menuItems[navLink.linkId])
{linkCount++;clickLinkDiv=document.createElement('div');clickLinkDiv.className='clickLinkDiv';clickLink=this.menuItems[navLink.linkId][linkId];txt=document.createTextNode(' ');clickDiv.appendChild(txt);a=document.createElement('a');a.id='asylumNavClickLink'+clickLink.linkId;a.className='clickLink';a.linkType='clickLink';a.linkId=linkId;a.levelId=clickLink.parentId;a.parentId=clickLink.parentId;if(clickLink.href==''||clickLink.href=='#'){a.href='#';a.target='';a.style.cursor='default';}else{a.href=clickLink.href;a.target=clickLink.target;}
if(this.layout=="Vertical"){a.innerHTML=clickLink.linkText;}else if(this.layout=="Horizontal-SubMenu"){if(clickLink.linkText.substring(0,1)==" "){a.innerHTML=clickLink.linkText.split(" ").join("&nbsp;");}else{a.innerHTML=clickLink.linkText;}}else{a.innerHTML=clickLink.linkText.split(" ").join("&nbsp;");}
a.onmouseover=function(){obj.HideAllLevels();obj.ShowLevel(this);};a.onmouseout=function(e){obj.HideLevel(e);};clickLinkDiv.appendChild(a);if(linkId==pageId)
{a.className='activeLink';clickLinkDiv.className+=' activeLink';}
clickDiv.appendChild(clickLinkDiv);txt=document.createTextNode(' ');clickDiv.appendChild(txt);}
if(linkCount==0||active==false)
{clickDiv.className='inactiveClickUnder';}
else
{clickDiv.className='activeClickUnder';}};AsylumNav.prototype.GetTopLevelLink=function(navLink)
{if(navLink.parentId=='0')
{return(navLink);}
while(1==1)
{navLink=this.GetParentLink(navLink);if(typeof navLink.parentId!='undefined')
{if(navLink.parentId=='0')
{break;}}}
return(navLink);};AsylumNav.prototype.GetParentLink=function(navLink)
{var levelId;var linkId;for(levelId in this.menuItems)
{for(linkId in this.menuItems[levelId])
{parNavLink=this.menuItems[levelId][linkId];if(parNavLink.linkId==navLink.parentId)
{return(parNavLink);}}}};AsylumNav.prototype.GetXPos=function(obj)
{var curleft=0;if(obj.offsetParent)
{while(obj.offsetParent&&obj.id!='navMenuCont')
{curleft+=obj.offsetLeft;obj=obj.offsetParent;}}
else if(obj.x)
curleft+=obj.x;return curleft;};AsylumNav.prototype.GetYPos=function(obj)
{var curtop=0;if(obj.offsetParent)
{while(obj.offsetParent&&obj.id!='navMenuCont')
{curtop+=obj.offsetTop;obj=obj.offsetParent;}}
else if(obj.y)
curtop+=obj.y;return curtop;};AsylumNav.prototype.ShowLevel=function(el)
{levelId=el.linkId;this.currentLevelId=levelId;window.clearTimeout(this.timeoutId);this.HideSubLevels(el.levelId);if(typeof this.menuItems[levelId]=='undefined')
{return;}
if(el.linkType=='clickLink')
{eP=document.getElementById('asylumNavClickLink'+el.linkId);eL=document.getElementById('asylumNavLevel'+levelId);SwapClass(eL,'subLevel','clickUnderSubLevel');}
else
{eP=document.getElementById('asylumNavLink'+levelId);eL=document.getElementById('asylumNavLevel'+levelId);SwapClass(eL,'clickUnderSubLevel','subLevel');}
if(eP.parentId=='0')
{switch(this.offset)
{case'Right':offsetX=(eP.offsetWidth);offsetY=0;break;case'Left':offsetX=(-eL.offsetWidth);offsetY=0;break;case'Bottom':offsetX=0;offsetY=eP.offsetHeight;eL.style.minWidth=eP.offsetWidth;break;}}
else
{switch(this.offset)
{case'Left':offsetX=(-eL.offsetWidth);offsetY=0;break;default:offsetX=(eP.offsetWidth);offsetY=0;break;}}
pX=this.GetXPos(eP);pY=this.GetYPos(eP);lX=pX+offsetX;lY=pY+offsetY;eL.style.position='absolute';$(eL).css({left:lX,top:lY});eL.style.visibility='visible';};AsylumNav.prototype.GetLevelWidth=function(levelId)
{maxWidth=0;for(linkId in this.menuItems[levelId])
{a=document.getElementById('asylumNavLink'+linkId);thisWidth=a.offsetWidth;if(thisWidth>maxWidth)
{maxWidth=thisWidth;}}
return(maxWidth);};AsylumNav.prototype.HideSubLevels=function(levelId,omitLevelId)
{if(typeof omitLevelId=='undefined')
{omitLevelId='0';}
eL=document.getElementById('asylumNavLevel'+levelId);for(levelId in eL.subLevels)
{this.HideSubLevels(levelId);if(levelId!=omitLevelId)
{eL=document.getElementById('asylumNavLevel'+levelId);eL.style.visibility='hidden';}}};AsylumNav.prototype.HideLevel=function(e)
{window.clearTimeout(this.timeoutId);if(!e)e=window.event;var el=(e.relatedTarget)?e.relatedTarget:e.toElement;var obj=this;var funct=function(){obj._HideLevel(el);};this.timeoutId=window.setTimeout(funct,1000);};AsylumNav.prototype._HideLevel=function(el)
{if(!el||el.id.substr(0,9)!='asylumNav'||(el.id.substr(0,9)=='asylumNav'&&el.style.visibility=='hidden'))
{this.HideAllLevels();}};AsylumNav.prototype.HideAllLevels=function()
{for(levelId in this.menuItems)
{if(levelId!='0')
{eL=document.getElementById('asylumNavLevel'+levelId);if(eL!=null)eL.style.visibility='hidden';}}};AsylumNav.prototype.CreateBreadCrumbs=function()
{if(document.getElementById("breadCrumbs")!=null)
{crumbsCont=document.getElementById("breadCrumbs");crumbsCont.style.display='none';crumbs='';homeLink='';for(levelId in this.menuItems)
{for(linkId in this.menuItems[levelId])
{navLink=this.menuItems[levelId][linkId];if(homeLink=='')
{homeLink='<a href="'+navLink.href+'" target="'+navLink.target+'">'
+navLink.linkText+'</a> &gt; ';}
if(linkId==pageId)
{i=0;parNavLink=this.GetParentLink(navLink);while(typeof parNavLink=='object')
{i++;crumbs='<a href="'+parNavLink.href+'" target="'+parNavLink.target+'">'
+parNavLink.linkText+'</a> &gt; '+crumbs;parNavLink=this.GetParentLink(parNavLink);}
if(i>1)
{crumbsCont.style.display='block';crumbsCont.innerHTML=homeLink+crumbs+'<span class="activeCrumb">'+navLink.linkText+'</span>';}
return(true);}}}}};function RemoveClass(el,className)
{var replaceName=(el.className.match(' '+className)?' '+className:className);el.className=el.className.replace(replaceName,'');};function AddClass(el,className)
{RemoveClass(el,className);el.className+=' '+className;};function SwapClass(el,removeClassName,addClassName)
{RemoveClass(el,removeClassName);AddClass(el,addClassName);};;$(function() {for (var i in tasks) {window.setTimeout(tasks[i], 0);}});function initMenu(){};$(function(){$("#navMenu").navmenu({pageInfo:{"a82129":{"P":0,"ID":82154,"C":82129,"O":0,"U":"http:\/\/www.projectplusgroup.co.uk\/","N":"Home","T":"_top","R":"","RT":"_blank"},"a87437":{"P":82129,"ID":87442,"C":87437,"O":"1","U":"http:\/\/www.projectplusgroup.co.uk\/about-project-portfolio.html","N":"About us","T":"_top","R":"","RT":"_blank"},"a87438":{"P":87437,"ID":87443,"C":87438,"O":"1","U":"http:\/\/www.projectplusgroup.co.uk\/senior-portfolio-program.html","N":"The Executives","T":"_top","R":"","RT":"_blank"},"a87441":{"P":82129,"ID":87444,"C":87441,"O":"2","U":"http:\/\/www.projectplusgroup.co.uk\/pm-consultant-training.html","N":"News","T":"_top","R":"","RT":"_blank"},"a87448":{"P":82129,"ID":87665,"C":87448,"O":"3","U":"http:\/\/www.projectplusgroup.co.uk\/project-consultancy-mentoring.html","N":"Consultancy","T":"_top","R":"","RT":"_blank"},"a87449":{"P":87448,"ID":87666,"C":87449,"O":"1","U":"http:\/\/www.projectplusgroup.co.uk\/strategic-project-management.html","N":"Strategic Advice &amp; Business Planning","T":"_top","R":"","RT":"_blank"},"a87450":{"P":87448,"ID":87667,"C":87450,"O":"2","U":"http:\/\/www.projectplusgroup.co.uk\/project-review-project.html","N":"Project Review Audit and\/or IQA","T":"_top","R":"","RT":"_top"},"a87451":{"P":87448,"ID":87668,"C":87451,"O":"3","U":"http:\/\/www.projectplusgroup.co.uk\/pm-capability-maturity.html","N":"PM Capability Maturity Assessments &amp; Benchmarking","T":"_top","R":"","RT":"_blank"},"a87452":{"P":87448,"ID":87669,"C":87452,"O":"4","U":"http:\/\/www.projectplusgroup.co.uk\/project-management-methodologies.html","N":"Methodologies, Guides &amp; Processes","T":"_top","R":"","RT":"_blank"},"a87453":{"P":87448,"ID":87670,"C":87453,"O":"5","U":"http:\/\/www.projectplusgroup.co.uk\/project-management-coaching.html","N":"Project Coaching and\/or Mentoring ","T":"_top","R":"","RT":"_blank"},"a87454":{"P":87448,"ID":87671,"C":87454,"O":"6","U":"http:\/\/www.projectplusgroup.co.uk\/pm-coaching-pm.html","N":"Alliances ","T":"_top","R":"","RT":"_blank"},"a87455":{"P":87448,"ID":87672,"C":87455,"O":"7","U":"http:\/\/www.projectplusgroup.co.uk\/change-management-techniques.html","N":"Change Management","T":"_top","R":"","RT":"_blank"},"a87457":{"P":82129,"ID":87673,"C":87457,"O":"4","U":"http:\/\/www.projectplusgroup.co.uk\/project-management-services.html","N":"Services","T":"_top","R":"","RT":"_blank"},"a87460":{"P":87457,"ID":87674,"C":87460,"O":"1","U":"http:\/\/www.projectplusgroup.co.uk\/project-manager-project.html","N":"Resource Provisioning","T":"_top","R":"","RT":"_blank"},"a87463":{"P":87457,"ID":87675,"C":87463,"O":"2","U":"http:\/\/www.projectplusgroup.co.uk\/project-management-office.html","N":"Programme and\/or Project Management Office","T":"_top","R":"","RT":"_blank"},"a87464":{"P":87457,"ID":87676,"C":87464,"O":"3","U":"http:\/\/www.projectplusgroup.co.uk\/pm-work-breakdown.html","N":"Programme and\/or Project Planning &amp; Scheduling","T":"_top","R":"","RT":"_blank"},"a87474":{"P":87457,"ID":87677,"C":87474,"O":"4","U":"http:\/\/www.projectplusgroup.co.uk\/pm-preparation-documents.html","N":"Procurement and\/or Contract Management &amp; Administration","T":"_top","R":"","RT":"_blank"},"a87475":{"P":87457,"ID":87678,"C":87475,"O":"5","U":"http:\/\/www.projectplusgroup.co.uk\/cost-management-project.html","N":"Programme and\/or Project Cost Management","T":"_top","R":"","RT":"_blank"},"a87476":{"P":87457,"ID":87679,"C":87476,"O":"6","U":"http:\/\/www.projectplusgroup.co.uk\/portfolio-management-risk.html","N":"Programme and\/or Project Risk Management","T":"_top","R":"","RT":"_blank"},"a87477":{"P":87457,"ID":87680,"C":87477,"O":"7","U":"http:\/\/www.projectplusgroup.co.uk\/project-facilitation-project.html","N":"Facilitation and Speaking Services","T":"_top","R":"","RT":"_blank"},"a87478":{"P":87457,"ID":87681,"C":87478,"O":"8","U":"http:\/\/www.projectplusgroup.co.uk\/project-management-software.html","N":"PM Information System Evaluation","T":"_top","R":"","RT":"_blank"},"a87397":{"P":82129,"ID":87440,"C":87397,"O":"5","U":"http:\/\/www.projectplusgroup.co.uk\/pm-training-tools.html","N":"Training","T":"_top","R":"","RT":"_blank"},"a87427":{"P":87397,"ID":87445,"C":87427,"O":"1","U":"http:\/\/www.projectplusgroup.co.uk\/project-based-management.html","N":"Core Skills Programme","T":"_top","R":"","RT":"_blank"},"a87479":{"P":87427,"ID":87682,"C":87479,"O":"1","U":"http:\/\/www.projectplusgroup.co.uk\/learn-project-management.html","N":"Understanding Project Management (1 day)","T":"_top","R":"","RT":"_blank"},"a87482":{"P":87427,"ID":87688,"C":87482,"O":"2","U":"http:\/\/www.projectplusgroup.co.uk\/essential-skills-core.html","N":"Essential Skills for Managing Projects (2 days)","T":"_top","R":"","RT":"_blank"},"a87491":{"P":87427,"ID":87691,"C":87491,"O":"3","U":"http:\/\/www.projectplusgroup.co.uk\/project-leadership-courses.html","N":"Project Leadership (2 days)","T":"_top","R":"","RT":"_blank"},"a300018":{"P":87427,"ID":300027,"C":300018,"O":"4","U":"http:\/\/www.projectplusgroup.co.uk\/people skills in project management (1 day).html","N":"People Skills in Project Management (1 day)","T":"_top","R":"","RT":"_blank"},"a87428":{"P":87397,"ID":87446,"C":87428,"O":"2","U":"http:\/\/www.projectplusgroup.co.uk\/ongoing-professional-development.html","N":"Specialist Skills Programme","T":"_top","R":"","RT":"_blank"},"a500228":{"P":87428,"ID":500230,"C":500228,"O":"1","U":"http:\/\/www.projectplusgroup.co.uk\/practical-stakeholder-management-.html","N":"Practical Stakeholder Management  (1 day)","T":"_top","R":"","RT":"_blank"},"a500234":{"P":87428,"ID":500240,"C":500234,"O":"2","U":"http:\/\/www.projectplusgroup.co.uk\/business-change-management.html","N":"Business Change Management (1 day)","T":"_top","R":"","RT":"_blank"},"a500242":{"P":87428,"ID":500254,"C":500242,"O":"3","U":"http:\/\/www.projectplusgroup.co.uk\/managing-multiple-priorities.html","N":"Managing Multiple Priorities (1 day)","T":"_top","R":"","RT":"_blank"},"a87494":{"P":87428,"ID":87694,"C":87494,"O":"4","U":"http:\/\/www.projectplusgroup.co.uk\/effective-project-planning.html","N":"Project Planning and Control (1 day)","T":"_top","R":"","RT":"_blank"},"a87499":{"P":87428,"ID":87697,"C":87499,"O":"5","U":"http:\/\/www.projectplusgroup.co.uk\/pm-cost-management.html","N":"Project Cost Management (1 day)","T":"_top","R":"","RT":"_blank"},"a87503":{"P":87428,"ID":87700,"C":87503,"O":"6","U":"http:\/\/www.projectplusgroup.co.uk\/learn-pm-risk.html","N":"Project Risk Management (1 day)","T":"_top","R":"","RT":"_blank"},"a87511":{"P":87428,"ID":87708,"C":87511,"O":"8","U":"http:\/\/www.projectplusgroup.co.uk\/establish-project-office.html","N":"Programme\/Project Office - Establish and Manage (1 day)","T":"_top","R":"","RT":"_blank"},"a87529":{"P":87428,"ID":87723,"C":87529,"O":"9","U":"http:\/\/www.projectplusgroup.co.uk\/project-procurement-course.html","N":" Project Procurement\/Contract Management (1 day)","T":"_top","R":"","RT":"_blank"},"a87533":{"P":87428,"ID":87726,"C":87533,"O":"10","U":"http:\/\/www.projectplusgroup.co.uk\/project-engineering-workshop.html","N":"A Passage Through Project Engineering (4 days)","T":"_top","R":"","RT":"_blank"},"a87538":{"P":87428,"ID":87729,"C":87538,"O":"11","U":"http:\/\/www.projectplusgroup.co.uk\/7-management-planning.html","N":"The 7 Management &amp; Planning Tools (2 days)","T":"_top","R":"","RT":"_blank"},"a87541":{"P":87428,"ID":87732,"C":87541,"O":"12","U":"http:\/\/www.projectplusgroup.co.uk\/ams-real-time.html","N":"AMS REALTIME Solutions (1 or 2 days)","T":"_top","R":"","RT":"_blank"},"a87545":{"P":87428,"ID":87733,"C":87545,"O":"13","U":"http:\/\/www.projectplusgroup.co.uk\/how-determine-project.html","N":"Determining Your Project Requirements (1 day)","T":"_top","R":"","RT":"_blank"},"a87429":{"P":87397,"ID":87447,"C":87429,"O":"3","U":"http:\/\/www.projectplusgroup.co.uk\/gain-business-related.html","N":"Executive Skills Programme","T":"_top","R":"","RT":"_blank"},"a87546":{"P":87429,"ID":87734,"C":87546,"O":"1","U":"http:\/\/www.projectplusgroup.co.uk\/portfolio-management-programme.html","N":"Portfolio and Programme Management (1 day)","T":"_top","R":"","RT":"_blank"},"a87553":{"P":87429,"ID":87738,"C":87553,"O":"2","U":"http:\/\/www.projectplusgroup.co.uk\/pm-business-benefits.html","N":"Business Benefits Realisation (1 day)","T":"_top","R":"","RT":"_blank"},"a87558":{"P":87429,"ID":87742,"C":87558,"O":"3","U":"http:\/\/www.projectplusgroup.co.uk\/pm-executive-overview.html","N":"Executive Overview (0.5 day)","T":"_top","R":"","RT":"_blank"},"a87559":{"P":87429,"ID":87743,"C":87559,"O":"4","U":"http:\/\/www.projectplusgroup.co.uk\/pm-project-sponsorship.html","N":"A Short Course for Sponsors (1 day)","T":"_top","R":"","RT":"_blank"},"a288524":{"P":87397,"ID":288529,"C":288524,"O":"4","U":"http:\/\/www.projectplusgroup.co.uk\/certificate-programmes.html","N":"Certificate Programmes","T":"_top","R":"","RT":"_blank"},"a500218":{"P":288524,"ID":500219,"C":500218,"O":"1","U":"http:\/\/www.projectplusgroup.co.uk\/prince2-foundation--3-days-.html","N":"PRINCE2 Foundation (3 days)","T":"_top","R":"","RT":"_blank"},"a500220":{"P":288524,"ID":500222,"C":500220,"O":"2","U":"http:\/\/www.projectplusgroup.co.uk\/prince2-practitioner--2-days-.html","N":"PRINCE2 Practitioner (2 days)","T":"_top","R":"","RT":"_blank"},"a289159":{"P":288524,"ID":289177,"C":289159,"O":"3","U":"http:\/\/www.projectplusgroup.co.uk\/certificate-in-project-administration.html","N":"Certificate in Project Administration","T":"_top","R":"","RT":"_blank"},"a289179":{"P":288524,"ID":289180,"C":289179,"O":"4","U":"http:\/\/www.projectplusgroup.co.uk\/certificate-in-project-coordination.html","N":"Certificate in Project Coordination","T":"_top","R":"","RT":"_blank"},"a289184":{"P":288524,"ID":289185,"C":289184,"O":"5","U":"http:\/\/www.projectplusgroup.co.uk\/certificate-in-project-management.html","N":"Certificate in Project Management","T":"_top","R":"","RT":"_blank"},"a87515":{"P":288524,"ID":87711,"C":87515,"O":"6","U":"http:\/\/www.projectplusgroup.co.uk\/pmp-certification-programme.html","N":"PMP\u00ae Certification Study Programme","T":"_top","R":"","RT":"_blank"},"a88169":{"P":288524,"ID":88171,"C":88169,"O":"7","U":"http:\/\/www.projectplusgroup.co.uk\/prepare-pmp-certification.html","N":"PMP\u00ae  Prep (2 days)","T":"_top","R":"","RT":"_blank"},"a87522":{"P":288524,"ID":87717,"C":87522,"O":"8","U":"http:\/\/www.projectplusgroup.co.uk\/capm-certification-course.html","N":"CAPM\u00ae Certification Study Programme","T":"_top","R":"","RT":"_blank"},"a88190":{"P":288524,"ID":88194,"C":88190,"O":"9","U":"http:\/\/www.projectplusgroup.co.uk\/prepare-capm-certification.html","N":"CAPM\u00ae Prep (2 days)","T":"_top","R":"","RT":"_blank"},"a87561":{"P":82129,"ID":87744,"C":87561,"O":"6","U":"http:\/\/www.projectplusgroup.co.uk\/memory-jogger-books.html","N":"Products","T":"_top","R":"","RT":"_blank"},"a87562":{"P":82129,"ID":87745,"C":87562,"O":"7","U":"http:\/\/www.projectplusgroup.co.uk\/project-management-recruiting.html","N":"Clients","T":"_top","R":"","RT":"_blank"},"a168029":{"P":82129,"ID":168043,"C":168029,"O":"8","U":"http:\/\/www.projectplusgroup.co.uk\/careers.html","N":"Careers","T":"_top","R":"","RT":"_blank"},"a181152":{"P":82129,"ID":181163,"C":181152,"O":"9","U":"http:\/\/www.projectplusgroup.co.uk\/links.html","N":"Links","T":"_top","R":"","RT":"_blank"},"a87563":{"P":82129,"ID":87746,"C":87563,"O":"10","U":"http:\/\/www.projectplusgroup.co.uk\/project-management-consulting.html","N":"Contact Us","T":"_top","R":"","RT":"_blank"}},alignment:"Horizontal",animate:0})});